net/http.connectMethod.proxyURL (field)
19 uses
net/http (current package)
transport.go#L851: cm.proxyURL, err = t.Proxy(treq.Request)
transport.go#L860: if cm.proxyURL == nil {
transport.go#L863: if u := cm.proxyURL.User; u != nil {
transport.go#L1593: if cm.proxyURL != nil {
transport.go#L1643: case cm.proxyURL == nil:
transport.go#L1645: case cm.proxyURL.Scheme == "socks5":
transport.go#L1648: if u := cm.proxyURL.User; u != nil {
transport.go#L1675: hdr, err = t.GetProxyConnectHeader(ctx, cm.proxyURL, cm.targetAddr)
transport.go#L1740: err = t.OnProxyConnectResponse(ctx, cm.proxyURL, connectReq, resp)
transport.go#L1756: if cm.proxyURL != nil && cm.targetScheme == "https" {
transport.go#L1826: proxyURL *url.URL // nil for no proxy, else full proxy URL
transport.go#L1838: if cm.proxyURL != nil {
transport.go#L1839: proxyStr = cm.proxyURL.String()
transport.go#L1840: if (cm.proxyURL.Scheme == "http" || cm.proxyURL.Scheme == "https") && cm.targetScheme == "http" {
transport.go#L1854: if cm.proxyURL != nil {
transport.go#L1855: return cm.proxyURL.Scheme
transport.go#L1862: if cm.proxyURL != nil {
transport.go#L1863: return canonicalAddr(cm.proxyURL)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |